home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Tutorial
/
Cookbook
/
01.hello.text_Ch6Ex1
/
MyHelloClass.m
< prev
next >
Wrap
Text File
|
1995-06-12
|
231b
|
19 lines
/* Generated by Interface Builder */
#import "MyHelloClass.h"
#import <stdio.h>
#import <stdlib.h>
@implementation MyHelloClass
- helloAction:sender
{
printf("hello, world\n");
system("date");
return self;
}
@end